home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / ifxlite / imagefx3 / rexx / autofx / clearbuffer.ifx < prev    next >
Text File  |  2004-08-03  |  377b  |  20 lines

  1. /*
  2.  *    Clear_Buffer.ifx
  3.  *    ClearBuffer script. Retrieves parameters from
  4.  *    ImpClearBufferParameters clip variable.
  5.  *
  6.  *    by Steve Tibbett
  7.  */
  8.  
  9. Options Results
  10.  
  11. SeqNum=Word(Arg(1),4);
  12.  
  13. Settings=GetClip("ImpClearBufferParameters"SeqNum);
  14. if (Settings="") then do
  15.     RequestNotify "ImpClearBufferParameters invalid in ImpClearBuffer.ifx"
  16.     return 20
  17.     End
  18.  
  19. ClearBuffer FORCE Settings
  20.